|
This page last changed on Feb 22, 2009 by williams.
Some source control systems (e.g., AccuRev) have a concept of a "change number", which the Last Change Labeller can use to build a label. The following configuration would prefix all labels with the string 'Foo-1-', so the build of change number 213 would be labelled 'Foo-1-213'
<project>
<labeller type="lastChangeLabeller">
<prefix>Foo-1-</prefix>
</labeller>
</project>
Configuration Elements:
| Node |
Description |
Type |
Required |
Default |
| prefix |
Any string to be put in front of the change number. |
string |
false |
"" |
| allowDuplicateSubsequentLabels |
Controls whether duplicate subsequent labels are permitted or not. If true, duplicate labels are left
intact. If false, the label will always be suffixed with ".n", where "n" is incremented for each
successive duplication. |
bool |
false |
true |
 | The Last Change Labeller was added in build 1.3.0.2710. It is available in CCNet 1.3 and later. |
|